home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / mach / ds3100.md / loMem.s < prev    next >
Text File  |  1992-12-18  |  1KB  |  36 lines

  1. /* loMem.s -
  2.  *
  3.  *     Contains code that is the first executed at boot time.
  4.  *
  5.  *    Copyright (C) 1989 Digital Equipment Corporation.
  6.  *    Permission to use, copy, modify, and distribute this software and
  7.  *    its documentation for any purpose and without fee is hereby granted,
  8.  *    provided that the above copyright notice appears in all copies.  
  9.  *    Digital Equipment Corporation makes no representations about the
  10.  *    suitability of this software for any purpose.  It is provided "as is"
  11.  *    without express or implied warranty.
  12.  *
  13.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/mach/ds3100.md/loMem.s,v 9.2 91/10/17 13:31:28 jhh Exp $ SPRITE (DECWRL)
  14.  */
  15.  
  16. #include "machConst.h"
  17. #include <regdef.h>
  18.  
  19. /*
  20.  * Amount to take off of the stack for the benefit of the debugger.
  21.  */
  22. #define START_FRAME    ((4 * 4) + 4 + 4)
  23.  
  24.     .globl    start
  25.     .globl    eprol
  26. start:
  27. eprol:
  28.     mtc0    zero, MACH_COP_0_STATUS_REG    # Disable interrupts
  29.     li        sp, MACH_CODE_START - START_FRAME
  30.     la        gp, _gp
  31.     sw        zero, START_FRAME - 4(sp)    # Zero out old ra for debugger
  32.     sw        zero, START_FRAME - 8(sp)    # Zero out old fp for debugger
  33.     jal        main                # main(argc, argv, envp)
  34.     addu    a0, zero, zero            
  35.     jal        Proc_Exit            # Proc_Exit(0)
  36.